/*
* Created on 12.12.2003
*/
package observations;
/**
* <code>OutOfRangeException</code> Is thrown when a value is out of preset
* valid range.
*
* @author Sascha Hemminger
* @version 2006-02-10
*/
public class OutOfRangeException extends Exception {
/**
*
*/
private static final long serialVersionUID = 7844773078384552289L;
/**
* Sole constructor establishes the message.
*
* @see java.lang.Exception#Exception(java.lang.String)
*/
OutOfRangeException() {
super("Value not in boundaries");
}
}
|